Skip to main content

2.2.2. Querry string parametrs

Parametrs

Main Parameters

ParameterDescriptionMandatoryTypeNotes
countryCountry codeYes
nameOrganization nameYes
fiscal_idTax identification numberYes
is_legalIndicator of legal entity (true/false)
contract_numContract numberYes
contact_nameContact person
regionRegion name; if not found in the directory, it will be added
districtDistrict name; if not found in the directory, it will be added
addressOrganization address
emailEmail address
phoneOrganization phone number
activitiesArray of activity typesarray of objectsSee activities Array Structure below
shop_nameStore name; mandatory and key if shop code is not usedYes (if shop code not used)
shop_addressStore address
shop_phoneStore phone number
shop_codeStore codeMandatory if used
shop_typeType of retail outlet
license_numCash register license number; mandatory and keyYes
tokenCash register fiscal token
spec_priceSpecial price (if applied)
activated_packagesActivated packagesarray of objectsSee activated_packages Array Structure below
activated_servicesActivated servicesarray of objectsSee activated_services Array Structure below
prepay_amountPrepayment amount
payment_typePayment type code
order_amountAmount for issuing the initial invoice

activities Array Structure

ParameterDescriptionMandatoryTypeNotes
codeActivity code
nameActivity name

activated_packages Array Structure

ParameterDescriptionMandatoryTypeNotes
codePackage code
date_fromActivation start date
date_forActivation end date
priceSpecialized package price

activated_services Array Structure

ParameterDescriptionMandatoryTypeNotes
codeService codeYesstring
date_fromActivation start dateYesdate/string
date_forActivation end dateYesdate/string
priceSpecialized service priceYesnumber

Code structure

{
"country": "",
"name": "",
"fiscal_id": "",
"is_legal": true,
"contract_num": "",
"contact_name": "",
"region": "",
"district": "",
"address": "",
"email": "",
"phone": "",
"activities": [
{
"code": "",
"name": ""
}
],
"shop_name": "",
"shop_address": "",
"shop_phone": "",
"shop_code": "",
"shop_type": "",
"license_num": "",
"token": "",
"spec_price": 0,
"activated_packages": [
{
"code": "",
"date_from": "",
"date_for": "",
"price": 0
}
],
"activated_services": [
{
"code": "",
"date_from": "",
"date_for": "",
"price": 0
}
],
"prepay_amount": 0,
"payment_type": "",
"order_amount": 0
}

Field Descriptions

  • country – Country code, required
  • name – Organization name, required
  • fiscal_id – Tax identification number, required
  • is_legal – Flag indicating a legal entity (true|false)
  • contract_num – Contract number, required
  • contact_name – Contact person
  • region – Region name; if not found in the directory, it will be added
  • district – District name; if not found in the directory, it will be added
  • address – Organization address, required
  • email – Email, required
  • phone – Organization phone number, required
  • activities – Array of activity types, each object contains:
    • code – Activity code
    • name – Activity name
  • shop_name – Store name, required and key if a store code is not used
  • shop_address – Store address
  • shop_phone – Store phone number
  • shop_code – Store code, key if used
  • shop_type – Type of retail outlet
  • license_num – Cash register license number, required and key
  • token – Cash register fiscal token number
  • spec_price – Special price if applied
  • activated_packages – Array of activated packages, each object contains:
    • code – Package code
    • date_from – Start date
    • date_for – End date
    • price – Specialized package price
  • activated_services – Array of activated services, each object contains:
    • code – Service code
    • date_from – Start date
    • date_for – End date
    • price – Specialized service price
  • prepay_amount – Prepayment amount
  • payment_type – Payment type code
  • order_amount – Amount for issuing the initial invoice